home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 June: Reference Library / Dev.CD Jun 99 RL Disk 1.toast / Technical Documentation / Macintosh Technotes and Q&As / technotes / tn / MPWScripts / DumpCLibraries < prev    next >
Encoding:
Text File  |  1997-12-10  |  272 b   |  7 lines  |  [TEXT/R*ch]

  1. If "`Exists -d "{CLibraries}"`"
  2.     For i in `files -f -t 'OBJ ' "{CLibraries}"`; 
  3.         DumpObj -n "{i}" | streamedit -e "1 delete; /(Å)¨1/  replace /[ ]*(Å)¨1/ ¨1'¶t{i}'" >> "{MPW}"CLibraries.index
  4.     End;
  5.     sort -l -unique "{MPW}"CLibraries.index -o "{MPW}"CLibraries.index
  6. End;
  7.